home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / mint / lib / mntlib44.zoo / mntlib / abs.c < prev    next >
C/C++ Source or Header  |  1994-03-01  |  129b  |  13 lines

  1. /* return absolute values */
  2. #include <stdlib.h>
  3.  
  4. #ifdef abs
  5. #undef abs
  6. #endif
  7.  
  8. int abs(x)
  9.   int x;
  10. {
  11.   return x < 0 ? -x : x;
  12. }
  13.